home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / dtype / fontdt12.lha / Src / dispatch.h < prev    next >
C/C++ Source or Header  |  1996-05-06  |  584b  |  39 lines

  1. /*
  2. **    dispatch.h - dispatcher interface for Font DataType class
  3. **    Copyright © 1995-96 Michael Letowski
  4. */
  5.  
  6. #ifndef DISPATCH_H
  7. #define DISPATCH_H
  8.  
  9. #ifndef EXEC_TYPES_H
  10. #include <exec/types.h>
  11. #endif
  12.  
  13. #ifndef INTUITION_CLASSES_H
  14. #include <intuition/classes.h>
  15. #endif
  16.  
  17. #ifndef SUPPORT_TYPES_H
  18. #include <support/types.h>
  19. #endif
  20.  
  21. #ifndef CLASSBASE_H
  22. #include "classbase.h"
  23. #endif
  24.  
  25.  
  26. /*
  27. **    Public constants
  28. */
  29. #define DATATYPENAME        "font.datatype"
  30. #define SUPERCLASSNAME    PICTUREDTCLASS
  31.  
  32.  
  33. /*
  34. **    Public functions prototypes
  35. */
  36. Class *InitClass(struct ClassBase *cb);
  37.  
  38. #endif    /* DISPATCH_H */
  39.